home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / dev / misc / fd2pragma.lha / fd2pragma / Scripts / MakePPCStuff < prev    next >
AmigaDOS Script File  |  2001-07-31  |  517b  |  20 lines

  1. .key FDFILE/A,CLIBFILE/A,DEST/A
  2. .bra {
  3. .ket }
  4.  
  5. ; $VER: MakePPCStuff 1.0 (31.12.1998)
  6. ; script to create all the needed library stuff with fd2pragma
  7. ; DEST must already exist and should be empty.
  8.  
  9. FailAt 21
  10.  
  11. MakeDir >NIL: {DEST}proto
  12. MakeDir >NIL: {DEST}powerup/ppcpragmas
  13. MakeDir >NIL: {DEST}powerup/ppcinline
  14.  
  15. fd2pragma {FDFILE} SPECIAL 53 CLIB {CLIBFILE} TO {DEST}powerup/ppcpragmas/
  16. fd2pragma {FDFILE} SPECIAL 54 TO {DEST}proto/
  17. fd2pragma {FDFILE} SPECIAL 50 CLIB {CLIBFILE} TO {DEST}powerup/ppcinline/
  18.  
  19. FailAt 10
  20.